home *** CD-ROM | disk | FTP | other *** search
- /* dummy graphics routines */
-
- /*
- #include <graph.h>
- */
-
- void init_graphics()
- {
- /*
- _setvideomode(_VRES16COLOR);
- _clearscreen(_GCLEARSCREEN);
- */
- }
-
- void clear_screen()
- {
- /*
- _clearscreen(_GCLEARSCREEN);
- */
- }
-
- void done_graphics()
- {
- /*
- _setvideomode(_DEFAULTMODE);
- */
- }
-
- void moveto(int x,int y)
- {
- /*
- _moveto(x,y);
- */
- }
-
- void lineto(int x,int y)
- {
- /*
- _lineto(x,y);
- */
- }
-